home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / Source Sea20778672001.psc / frmAbout.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-04-22  |  1.9 KB  |  65 lines

  1. VERSION 5.00
  2. Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
  3. Begin VB.Form frmAbout 
  4.    BorderStyle     =   4  'Fixed ToolWindow
  5.    Caption         =   "About"
  6.    ClientHeight    =   6072
  7.    ClientLeft      =   36
  8.    ClientTop       =   336
  9.    ClientWidth     =   7212
  10.    Icon            =   "frmAbout.frx":0000
  11.    LinkTopic       =   "Form3"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   6072
  15.    ScaleWidth      =   7212
  16.    ShowInTaskbar   =   0   'False
  17.    StartUpPosition =   1  'CenterOwner
  18.    Begin RichTextLib.RichTextBox RichTextBox1 
  19.       Height          =   3612
  20.       Left            =   120
  21.       TabIndex        =   2
  22.       Top             =   1920
  23.       Width           =   6972
  24.       _ExtentX        =   12298
  25.       _ExtentY        =   6371
  26.       _Version        =   393217
  27.       Enabled         =   -1  'True
  28.       ScrollBars      =   2
  29.       TextRTF         =   $"frmAbout.frx":0E42
  30.    End
  31.    Begin VB.Frame Frame1 
  32.       Height          =   1830
  33.       Left            =   120
  34.       TabIndex        =   1
  35.       Top             =   0
  36.       Width           =   6972
  37.       Begin VB.Image Image1 
  38.          Height          =   1680
  39.          Left            =   20
  40.          Picture         =   "frmAbout.frx":0ECD
  41.          Top             =   120
  42.          Width           =   6900
  43.       End
  44.    End
  45.    Begin VB.CommandButton cmdExit 
  46.       Caption         =   "Exit"
  47.       Height          =   372
  48.       Left            =   6120
  49.       TabIndex        =   0
  50.       Top             =   5640
  51.       Width           =   972
  52.    End
  53. Attribute VB_Name = "frmAbout"
  54. Attribute VB_GlobalNameSpace = False
  55. Attribute VB_Creatable = False
  56. Attribute VB_PredeclaredId = True
  57. Attribute VB_Exposed = False
  58. Option Explicit
  59. Private Sub cmdExit_Click()
  60.   Unload Me
  61. End Sub
  62. Private Sub Form_Load()
  63.   RichTextBox1.TextRTF = ReleaseNotesInfo
  64. End Sub
  65.